Stored Procedures [dbo].[BAEOrderCategoryParentLookupUpdate]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@OrderCategoryIDint4
@OrderCategoryParentIDint4
SQL Script
create procedure [dbo].[BAEOrderCategoryParentLookupUpdate] @OrderCategoryID as
int,
    @OrderCategoryParentID AS int
AS
    UPDATE OrderCategoryParentLookup
    SET
    OrderCategoryID = @OrderCategoryID,    
    OrderCategoryParentID = @OrderCategoryParentID        
            
    WHERE OrderCategoryID = @OrderCategoryID AND
    OrderCategoryParentID = @OrderCategoryParentID;

GO
Uses